pandas 1.4.2

ParametersReturns
flex_wrapper(self, other, level=None, fill_value=None, axis=0)

Equivalent to series / other , but with support to substitute a fill_value for missing data in either one of the inputs.

Parameters

other : Series or scalar value
fill_value : None or float value, default None (NaN)

Fill existing missing (NaN) values, and any new element needed for successful Series alignment, with this value before computation. If data in both corresponding Series locations is missing the result of filling (at that location) will be missing.

level : int or name

Broadcast across a level, matching Index values on the passed MultiIndex level.

Returns

Series

The result of the operation.

Return Floating division of series and other, element-wise (binary operator :None:None:`truediv`).

See Also

Series.rtruediv

Reverse of the Floating division operator, see :None:None:`Python documentation <https://docs.python.org/3/reference/datamodel.html#emulating-numeric-types>` for more details.

Examples

This example is valid syntax, but we were not able to check execution
>>> a = pd.Series([1, 1, 1, np.nan], index=['a', 'b', 'c', 'd'])
... a a 1.0 b 1.0 c 1.0 d NaN dtype: float64
This example is valid syntax, but we were not able to check execution
>>> b = pd.Series([1, np.nan, 1, np.nan], index=['a', 'b', 'd', 'e'])
... b a 1.0 b NaN d 1.0 e NaN dtype: float64
This example is valid syntax, but we were not able to check execution
>>> a.divide(b, fill_value=0)
a    1.0
b    inf
c    inf
d    0.0
e    NaN
dtype: float64
See :

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


File: /pandas/core/ops/__init__.py#176
type: <class 'function'>
Commit: